home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Tools / Languages / MacHaskell 2.2 / com / locked < prev    next >
Encoding:
Text File  |  1994-09-27  |  196 b   |  15 lines  |  [TEXT/ttxt]

  1. #!/bin/csh
  2. #
  3. #
  4. # identify locked source files
  5. #
  6.  
  7. cd $Y2
  8. foreach i (*/*.scm */*.lisp)
  9.   if (-e $i:h/RCS/$i:t,v) then
  10.     foreach j (`rlog -R -L $i:h/RCS/$i:t,v`)
  11.       ls -l $i
  12.     end
  13.   endif
  14. end
  15.